Object
PythonResult
PythonResult | Constructs a empty PythonResult |
PythonResult | Constructs a result with Int32 value |
PythonResult | Constructs a result with Int64 value |
PythonResult | Constructs a result with UInt64 value |
PythonResult | Constructs a result with double value |
PythonResult | Constructs a result with string value |
PythonResult | Constructs a result with boolean value |
PythonResult | Constructs a result with object value |
BooleanValue (console safe) | Returns boolean value from the result |
DictionaryValue (console safe) | Returns the internal Dictionary value as a PythonDictionary instance. This is used to read keyed multiple results. |
DoubleValue (console safe) | Returns double value from the result |
GetPtr (console safe) | Gets a pointer to the inner Python object of the PythonResult class. |
Int64Value (console safe) | Returns Int64 value from the result |
IntegerValue (console safe) | Returns integer value from the result |
IsBigInteger (console safe) | Returns true if the Result is big integer of any kind. |
IsBoolean (console safe) | Returns true if the Result is Boolean |
IsDictionary (console safe) | Returns true if the result is a Dictionary |
IsDouble (console safe) | Returns true if the Result is Double |
IsInteger (console safe) | Returns true if the Result is Integer |
IsObject (console safe) | Returns true if the Result is Xojo or Real Studio object |
IsString (console safe) | Returns true if the Result is String |
IsTuple (console safe) | Returns true if the result is a Tuple |
ObjectValue (console safe) | Returns a object field from the result. Object field here means that Xojo or Real Studio object gets stored in a Python script |
StringValue (console safe) | Returns string value from the result |
TupleValue (console safe) | Returns the internal tuple value as a PythonParameters instance. This is used to read multiple results. |
UInt64Value (console safe) | Returns UInt64 value from the result |